VBAの機能をMATLABで実行する

조회 수: 3 (최근 30일)
tsuyoshi iitake
tsuyoshi iitake 2020년 12월 16일
マクロで使用していた行の始まりと終わりを見つけるプログラムをMATLABに適応しようと考えています。
以下マクロで組んでいたプログラムです。
===================================================================================
Dim Target As Range, Selectcell As Range 
On Error Resume Next
Set Selectcell = Application.InputBox _ ("Select LASIS", Type:=8)
If Err.Number <> 0 Then Exit Sub
l_fst = Selectcell.Row
l_clmn = Selectcell.Column
For l_TempR = l_first To 3000
If IsEmpty(Cells(l_TempR, l_clmn).Value) Then
l_TempC = l_TempR - 1
Exit For
End If
Next l_TempR
l_lst = l_TempC
u = l_clmn
=======================================================================================

답변 (0개)

카테고리

Help CenterFile Exchange에서 Data Export to MATLAB에 대해 자세히 알아보기

제품

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!